home *** CD-ROM | disk | FTP | other *** search
/ Freelog 121 / FreelogMagazineJuilletAout2014-No121.iso / Outils / Adobe-Air / adobe-air_13.exe / [0] / setup.swf / scripts / mx / validators / ValidationResult.as < prev   
Text File  |  2014-03-27  |  703b  |  31 lines

  1. package mx.validators
  2. {
  3.    import mx.core.mx_internal;
  4.    
  5.    use namespace mx_internal;
  6.    
  7.    public class ValidationResult
  8.    {
  9.       
  10.       mx_internal static const VERSION:String = "3.0.0.0";
  11.        
  12.       
  13.       public var subField:String;
  14.       
  15.       public var errorCode:String;
  16.       
  17.       public var isError:Boolean;
  18.       
  19.       public var errorMessage:String;
  20.       
  21.       public function ValidationResult(param1:Boolean, param2:String = "", param3:String = "", param4:String = "")
  22.       {
  23.          super();
  24.          this.isError = param1;
  25.          this.subField = param2;
  26.          this.errorMessage = param4;
  27.          this.errorCode = param3;
  28.       }
  29.    }
  30. }
  31.